home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / ldapjdk.jar / netscape / ldap / util / LDIFContent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-13  |  440 b   |  14 lines

  1. package netscape.ldap.util;
  2.  
  3. public interface LDIFContent {
  4.    int ATTRIBUTE_CONTENT = 0;
  5.    int ADD_CONTENT = 1;
  6.    int DELETE_CONTENT = 2;
  7.    int MODIFICATION_CONTENT = 3;
  8.    int MODDN_CONTENT = 4;
  9.  
  10.    int getType();
  11.  
  12.    String toString();
  13. }
  14.